home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / dos / dir / setdisk.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-02  |  235 b   |  14 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <dir.h>
  3. #include <dpmi.h>
  4.  
  5. int
  6. setdisk(int _drive)
  7. {
  8.   __dpmi_regs r;
  9.   r.h.ah = 0x0e;
  10.   r.h.dl = _drive;
  11.   __dpmi_int(0x21, &r);
  12.   return r.h.al;
  13. }
  14.